home *** CD-ROM | disk | FTP | other *** search
- ; $VER: Install 37.0 (8.4.94)
- ; Script to install MaxDOS
-
- ; Global variables
-
- (set @default-dest "SYS:")
-
- (complete 0)
-
- (set #introduction
- (cat "\n\n\n\This program lets you install MaxDOS 2.0\n"
- "from Media4 Productions on your system.\n\n"
- "Any version of MaxDOS already present\nwill be replaced.\n\n"
- "Do you wish to proceed with the installation?"
- ))
-
- (set #ask-com-auto-start
- (cat "\n\nDo you want the MaxDOS commodity to be started "
- "automatically when you boot your system?"
- ))
-
- (set #com-auto-start-help
- (cat "\n The MaxDOS commodity is a useful companion "
- "to MaxDOSFileSystem, allowing control of data and resource fork display, "
- "text translation, and display of hidden files."
-
- "\n\n Selecting \"Yes\" will place the MaxDOS commodity in "
- "your \"WBStartup\" drawer, causing it to be started "
- "automatically when you boot your system."
- "\n\n Selecting \"No\" will allow you to specify a destination "
- "for the commodity."
- ))
-
- (set #ask-auto-com-1
- (cat "Yes"
- ))
-
- (set #ask-auto-com-2
- (cat "No"
- ))
-
- (set #commod-dest-help
- (cat "\n This allows you to control where the MaxDOS commodity will be installed."
- "\n\n Placing the commodity in \"WBStartup\" will cause the commodity "
- "to be started automatically when you boot your system."
- ))
-
- (set #ask-mount-1
- (cat "Install Mounter"
- ))
-
- (set #mount-dest-help
- (cat "\n This allows you to control where MaxDOS Mounter will be installed."
- "\n\n MaxDOS Mounter is a utility that allows you "
- "to scan drives on your system and automatically "
- "generate the necessary data files (mountlists) "
- "that are required to access Mac disks.\n\n"
- ))
-
- (set #no-mfm
- (cat "\nYou do not appear to have the file \"mfm.device\" in your "
- "DEVS: directory. This will not affect your ability to access "
- "SCSI devices, but it does preclude your ability to access "
- "high-density floppies (possible only with a high-density drive).\n"
- "\nThis file is part of the standard distribution of Workbench 2.1 "
- "and above, and is also part of Consultron(TM)'s CrossDOS(TM) package."
- ))
-
- (set _InstallMountlists
- (cat "\nWould you like to install pre-made mountlists for high-density floppy drives?"
- ))
-
- (set _InstallMountlistsHelp
- (cat "\n Selecting \"Yes\" will install the pre-made mountlists necessary to access "
- "high-density Mac floppies. These mountlists can also be generated by "
- "Mounter--see your manual for more information.\n"
- "\n To use MaxDOS with high-density Mac floppies, you will need a "
- "high-density floppy drive."
- ))
-
- (set _CopyMountlistHelp
- (cat "\nThis allows you to decide which pre-made mountlist(s) will be installed.\n"
- " \n\"MF0\" will enable use of Mac format floppies in the drive normally "
- "referred to as \"DF0\", \"MF1\" enables use in \"DF1\", and so on."
- ))
-
- (set _CopyMountlistPrompt
- (cat "Please select the mountlist(s) you would like installed.")
- )
-
- (set _AutomountPrompt
- (cat "\nDo you want these drives to be automatically mounted "
- "when you boot your system?")
- )
-
- (set _AutomountHelp
- (cat "\nSelecting \"Yes\" will make these drives automatically available "
- "when you boot your system.")
- )
-
- ;===========================================
- ; Start
-
- (message #introduction)
-
- (set dest-dir "l:")
- (copyfiles (source "MaxDOS:l/MaxDOSFileSystem")
- (dest dest-dir)
- )
-
- (complete 40)
-
- (
- (delete "SYS:Tools/Commodities/MaxDOS" (infos))
- (delete "SYS:WBStartup/MaxDOS" (infos))
-
-
- (if (askbool (prompt #ask-com-auto-start)
- (help #com-auto-start-help)
- (choices #ask-auto-com-1 #ask-auto-com-2)
- )
-
- (
- (set dest-dir "SYS:WBStartup")
- (set tool-type "NO")
- )
- (
- (set dest-dir (askdir (default "SYS:Tools/Commodities")
- (prompt "Select a destination for the MaxDOS commodity")
- (help #commod-dest-help)
- )
- )
- (set tool-type "YES")
- )
- )
-
-
- (
- (copyfiles (source ("MaxDOS:Tools/Commodities/MaxDOS"))
- (dest dest-dir)
- (infos)
- )
- (tooltype (dest (tackon dest-dir "MaxDOS"))
- (noposition)
- (settooltype "CX_POPUP" tool-type)
- )
- (message ("\nThe MaxDOS commodity has been placed in \"%s\"" dest-dir))
- )
- )
-
- (complete 70)
-
- (
- (set source-dir "MaxDOS:Utilities")
- (set dest-dir (askdir (default "SYS:Utilities")
- (prompt "Select a destination for MaxDOS Mounter")
- (help #mount-dest-help)
- )
- )
- (copyfiles (source (tackon source-dir "Mounter"))
- (dest dest-dir)
- (infos)
- (noposition)
- )
- (tooltype (dest (tackon dest-dir "Mounter"))
- (noposition)
- )
-
- (message ("\nMaxDOS Mounter has been placed in \"%s\"" dest-dir))
- )
-
- (if (exists "DEVS:mfm.device")
- (
- if (askbool (prompt _InstallMountlists)
- (help _InstallMountlistsHelp)
- )
- (
- (set _MF0Bit 0)
- (set _MF1Bit 1)
- (set _MF2Bit 2)
- (set _MF3Bit 3)
- (set _WhichMountlists 0)
-
- (set _WhichMountlists (askoptions (prompt _CopyMountlistPrompt)
- (choices ("MF0") ("MF1") ("MF2") ("MF3"))
- (help _CopyMountlistHelp)
- (default 1)
- )
- )
-
- (if (AND (exists ("SYS:Devs/DOSDrivers")) (exists ("SYS:Storage/DOSDrivers")))
- (set _NewStyle 1)
- (set _NewStyle 0)
- )
-
- (if (askbool (prompt _AutomountPrompt)
- (help _AutomountHelp)
- (choices ("Yes") ("No"))
- )
- (set _AutomountDevs 1)
- (set _AutomountDevs 0)
- )
-
- (if _Newstyle
- (
- (if _AutomountDevs
- (set _DestDir ("SYS:Devs/DOSDrivers"))
- (set _DestDir ("SYS:Storage/DOSDrivers"))
- )
- (set _SourceDir ("MaxDOS:Devs/DOSDrivers"))
-
- (if (IN _WhichMountlists _MF0Bit)
- (copyfiles (source (tackon _SourceDir ("MF0")))
- (dest _DestDir)
- (infos)
- )
- )
-
- (if (IN _WhichMountlists _MF1Bit)
- (copyfiles (source (tackon _SourceDir ("MF1")))
- (dest _DestDir)
- (infos)
- )
- )
-
- (if (IN _WhichMountlists _MF2Bit)
- (copyfiles (source (tackon _SourceDir ("MF2")))
- (dest _DestDir)
- (infos)
- )
- )
-
- (if (IN _WhichMountlists _MF3Bit)
- (copyfiles (source (tackon _SourceDir ("MF3")))
- (dest _DestDir)
- (infos)
- )
- )
- )
-
- (
- (copyfiles (source "MaxDOS:Devs/mountlist.maxdos")
- (dest "DEVS:")
- )
-
- (if (IN _WhichMountlists _MF0Bit)
- (startup ("MaxDOS") ("Mount MF0: FROM DEVS:mountlist.maxdos"))
- )
-
- (if (IN _WhichMountlists _MF1Bit)
- (startup ("MaxDOS") ("Mount MF1: FROM DEVS:mountlist.maxdos"))
- )
-
- (if (IN _WhichMountlists _MF2Bit)
- (startup ("MaxDOS") ("Mount MF2: FROM DEVS:mountlist.maxdos"))
- )
-
- (if (IN _WhichMountlists _MF3Bit)
- (startup ("MaxDOS") ("Mount MF3: FROM DEVS:mountlist.maxdos"))
- )
- )
-
- )
- )
- )
- (message #no-mfm)
- )
-
- (run "copy MaxDOS:S/MaxDOS.serialnumber TO ENV:MAXDOSSERIALNUMBER")
-
- (message ("\nYour MaxDOS serial number is:\n\n%s\n" (getenv ("MAXDOSSERIALNUMBER")))
- ("\nPlease record this number on your registration card.\n")
- ("\nYou can also find your serial number in Mounter's \"About\" window.")
- )
-
- (complete 100)
-